home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / shareware / Flash_Oyunlar.exe / bumperball.swf / scripts / DefineButton2_418 / BUTTONCONDACTION on(keyPress Enter).as next >
Encoding:
Text File  |  2005-07-13  |  350 b   |  14 lines

  1. on(keyPress "<Enter>"){
  2.    if(name == undefined or name == " " or name == "  " or name == "Please type your name...")
  3.    {
  4.       name = "Please type your name...";
  5.       gotoAndStop("submit");
  6.       play();
  7.    }
  8.    else
  9.    {
  10.       loadVariables("/highscore/insert_score.php","_root","POST");
  11.       _root.gotoAndPlay("Highscore");
  12.    }
  13. }
  14.